home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2011 April / ME_2011_04.iso / [Video-Tutorial] / 9430830 / expressinstall.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-11-07  |  685 b   |  18 lines

  1. Stage.align = "LT";
  2. Stage.scaleMode = "noScale";
  3. _quality = "BEST";
  4. var upgradeMsg = _root.attachMovie("upgradeMsg_src","upgradeMsg",1);
  5. upgradeMsg._x = Math.round(Stage.width / 2 - upgradeMsg._width / 2);
  6. upgradeMsg._y = Math.round(Stage.height / 2 - upgradeMsg._height / 2 - 50);
  7. upgradeMsg.upgradeBtn.onRelease = function()
  8. {
  9.    com.deconcept.expressinstall.ExpressInstall.getInstance().loadUpdater();
  10. };
  11. var stageListener = new Object();
  12. stageListener.onResize = function()
  13. {
  14.    upgradeMsg._x = Math.round(Stage.width / 2 - upgradeMsg._width / 2);
  15.    upgradeMsg._y = Math.round(Stage.height / 2 - upgradeMsg._height / 2 - 50);
  16. };
  17. Stage.addListener(stageListener);
  18.